home *** CD-ROM | disk | FTP | other *** search
/ Software USA 3 #11 / Software USA Volume 3.11.iso / mac / Education / Student Programmer / Cool Script < prev    next >
Encoding:
Text File  |  1996-11-20  |  348 b   |  10 lines  |  [TEXT/ttxt]

  1. on mouseUp
  2.      answer "Are you cool?" with "Yes" or "No"
  3.      if it is "Yes" then
  4.          ask "What makes you so cool?"
  5.          answer "You think that saying" && quote & it & quote && "makes you cool?" with "Yup"
  6.          answer "OK, I guess you're cool." with "I know"
  7.      else
  8.          answer "You can say that again."
  9.      end if
  10. end mouseUp